home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Comms & Internet / DXF to VRML97 1.0.1 / src / DropUNIX Lib / Lib Headers / DSAppleEvents.h < prev    next >
Text File  |  1998-08-14  |  2KB  |  55 lines

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DSAppleEvents.h
  5. **
  6. **   Description:    Header w/prototypes for the generic AppleEvent handling routines
  7. **
  8. *******************************************************************************
  9. **                       A U T H O R   I D E N T I T Y
  10. *******************************************************************************
  11. **
  12. **    Initials    Name
  13. **    --------    -----------------------------------------------
  14. **    LDR            Leonard Rosenthol
  15. **    MTC            Marshall Clow
  16. **    SCS            Stephan Somogyi
  17. **
  18. *******************************************************************************
  19. **                      R E V I S I O N   H I S T O R Y
  20. *******************************************************************************
  21. **
  22. **      Date        Author    Description
  23. **    ---------    ------    ---------------------------------------------
  24. **    11 Dec 93    SCS        Universal Headers/UPPs (Phoenix 68k/PPC & PPCC)
  25. **                        Skipped System 6 compatible rev of DropShell source
  26. **    11/24/91    LDR        Added new routines to this header
  27. **    10/29/91    SCS        Changes for THINK C 5
  28. **    10/28/91    LDR        Officially renamed DropShell (from QuickShell)
  29. **    10/06/91    MTC        Converted to MPW C
  30. **    04/09/91    LDR        Added to Projector
  31. **
  32. ******************************************************************************/
  33.  
  34. #ifndef __DSAPPLEEVENTS_H__
  35. #define __DSAPPLEEVENTS_H__
  36.  
  37. #include <AppleEvents.h>
  38.  
  39. #include "DSGlobals.h"
  40. #include "DSUtils.h"
  41. #include "DSUserProcs.h"
  42.  
  43. pascal void        InitAEVTStuff(void);
  44. OSErr            GotRequiredParams(AppleEvent *theAppleEvent);
  45.  
  46. pascal OSErr    _HandleDocs ( AppleEvent *theAppleEvent, AppleEvent *reply, Boolean opening );
  47.  
  48. pascal OSErr    HandleOAPP(AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon);
  49. pascal OSErr    HandleQuit(AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon);
  50. pascal OSErr    HandleODOC(AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon);
  51. pascal OSErr    HandlePDOC(AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon);
  52. pascal void        DoHighLevelEvent(EventRecord *event);
  53.  
  54. #endif
  55.